home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
os2tools
/
devshell
/
dshell.cfg
< prev
next >
Wrap
Text File
|
1991-12-07
|
4KB
|
107 lines
#------------------------------------------------------------
# DevShell - Developers Shell
# (C) Copyright 1991 Frank V. Castellucci
# All Rights Reserved
#
# DevShell Configuration File
# General keywords and symbols required when described:
#
# ALIAS
# =
# VOL
# UPCASEASSIGN
#
# Syntax UPPERCASE - required keyword
# <userinput> - user defined
# [option1|optionN] - optional strings
#
# All strings and assignments can only use 1 line, for now.
#------------------------------------------------------------
#------------------------------------------------------------
# Home and help directory KEYWORD (HOME,HELP) required
#------------------------------------------------------------
HOME = G:\REXXAPPS
HELP = G:\REXXAPPS
#-----------------------------------------------------------
# Configuration lookaside assignments
# Usage: UPCASEASSIGN = <application>
#
# Where UPCASEASSIGN is what you will be
# calling on the DevShell command line. Note
# that when called, case is insensitive.
# This name can also be referenced in the
# using command for alias lists.
#
# <application> is the name, or full path and
# name, of the application to execute when
# entering UPCASEASSIGN.
#-----------------------------------------------------------
BROWSE = FB # Browse ( read only ) utility
EDIT = T # Editor utility
CC = cl # Compiler
LINK = link # Linker
RC = rc # Resource Compiler
MAKE = nmake # Make Utility
STAT = pstat # System Activity Display
MEXEC = mbbsexec # BBS Batch executor
#-----------------------------------------------------------
# Volser assignment area
# Usage : VOL = <assignment> <fullpath>
#
# Where <assignment> is what you want to
# enter with the 'GO' command.
#
# <fullpath> is the fully qualified path name
# that <assignment> refers to.
#-----------------------------------------------------------
VOL = os2dir C:\OS2
VOL = dlldir C:\OS2\DLL
VOL = comobj G:\LANCOMMON.OBJECT.DECKS
VOL = comsrc F:\LANCOMMON\SOURCE
VOL = sysobj G:\SYSTEMSERVICES.OBJECT.DECKS
VOL = syssrc F:\SYSTEMSERVICES\SOURCE
VOL = history G:\OSRM2L\HISTORY
VOL = bbsmain E:\MAGNUM
VOL = bbsblib E:\MAGNUM\BETAFILE
VOL = bbsclib E:\MAGNUM\CORRECT
VOL = bbsdlib E:\MAGNUM\DEVELOP
VOL = bbstlib E:\MAGNUM\TECH_RM2
#-----------------------------------------------------------
# Alias assignments area
# Usage : ALIAS = <assignment> EXEC <commandstring> [using | ?]
#
# Where <assignment> is what you will enter on
# the DevShell command line.
#
# <commandstring> is what will be executed as
# a results.
#
# USING - can redirect execution to configuration
# name.
#
# ? - Will prompt for arguments
#-----------------------------------------------------------
ALIAS = comp exec using CC
ALIAS = comp? exec using CC ?
ALIAS = cls exec cls
ALIAS = checkin exec ci ?
ALIAS = checkout exec co ?
ALIAS = dir exec dir
ALIAS = dir? exec dir ?
ALIAS = del? exec del ?
ALIAS = delbak exec del *.bak
ALIAS = doeamanip exec using MAKE -f eamanip.mak
ALIAS = ls exec dir
ALIAS = ps exec using STAT ?
ALIAS = ld exec dir *.
ALIAS = wc exec call wordcnt();